0 rows where subshape = "pair of parallel arrows"

View and edit SQL

0 records

CREATE TABLE "full_subdiagrams" (
	"subshape"	TEXT NOT NULL,
	"shape"	TEXT NOT NULL,
	FOREIGN KEY("subshape") REFERENCES "diagrams"("shape") on update cascade on delete restrict,
	FOREIGN KEY("shape") REFERENCES "diagrams"("shape") on update cascade on delete restrict,
	PRIMARY KEY("subshape","shape")
);